-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Update SwiftBuild progress reporting #9519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
* Planning start / complete under higher verbosity * Target up to date message emitted * Build progress messages only emitted if text is useful (omit fractional messages)
| } | ||
| case .targetUpToDate(let info): | ||
| // Received when a target is entirely up to date and did not need to be built. | ||
| self.outputStream.send("Target \(info.guid) up to date." + "\n") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be under isVerbose or perhaps even extra verbose.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed - I just updated this line to self.observabilityScope.emit(info: ...) so it should be visible only under verbose mode now.
|
@swift-ci please test |
|
@swift-ci please test |
1 similar comment
|
@swift-ci please test |
Addresses: